public static string GetMethod(this Services.FigmaCodeNode sender, string methodName, string parameters, bool inQuotes = false)
 {
     return(CodeGenerationHelpers.GetMethod(sender.Name, methodName, parameters, inQuotes));
 }
 public static string GetMethod(this Services.FigmaCodeNode sender, string methodName, Enum parameter)
 {
     return(GetMethod(sender, methodName, parameter.GetFullName()));
 }
 public static string GetMethod(this Services.FigmaCodeNode sender, string methodName, bool parameter)
 {
     return(CodeGenerationHelpers.GetMethod(sender.Name, methodName, parameter));
 }
 public static string GetEquality(this Services.FigmaCodeNode sender, string propertyName, string value, bool inQuotes = false)
 {
     return(CodeGenerationHelpers.GetEquality(sender.Name, propertyName, value, inQuotes));
 }
 public static string GetEquality(this Services.FigmaCodeNode sender, string propertyName, bool value)
 {
     return(GetEquality(sender, propertyName, value.ToDesignerString()));
 }
 public static string GetEquality(this Services.FigmaCodeNode sender, string propertyName, Enum value)
 {
     return(GetEquality(sender, propertyName, value.GetFullName()));
 }
 public static string GetConstructor(this Services.FigmaCodeNode sender, string typeFullName, bool includesVar = true)
 {
     return(CodeGenerationHelpers.GetConstructor(sender.Name, typeFullName, includesVar));
 }
 public static string GetConstructor(this Services.FigmaCodeNode sender, Type type, bool includesVar = true)
 {
     return(GetConstructor(sender, type.FullName, includesVar));
 }