Skip to content

Commit

Permalink
Merge pull request #41 from plaidev/flutter
Browse files Browse the repository at this point in the history
[android] support user props customization
  • Loading branch information
RyosukeCla authored Jun 4, 2024
2 parents 3c3f813 + d8dc619 commit e6d7676
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@ class NativebrikUser {
this.comeBack()
}

fun set(props: Map<String, String>) {
props.forEach { (key, value) ->
this.properties[key] = value
}
}

fun comeBack() {
val now = getCurrentDate()
val lastBootTime = getCurrentDate()
Expand Down

0 comments on commit e6d7676

Please sign in to comment.